Not supported. An entry cannot be added to a ReadOnlyDictionary instance.

Namespace:  Microsoft.Rtc.Collaboration.AudioVideo
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Sub 
Add ( _
	
key 
As K, _
	
value 
As V _
)
C#
public 
void 
Add(
		K 
key,
		V 
value
)
Visual C++
public:
virtual 
void 
Add(
		K 
key, 
		V 
value
) 
sealed
JavaScript
function 
add(
key, 
value);

Parameters

key
Type: K
The key of the element to add.
value
Type: V
The element with the specified key.

Implements

IDictionaryAdd(UTP, UTP)

Exceptions

Exception Condition
NotSupportedException Thrown when this method is called.

See Also